home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / math / daubwave / readme.txt < prev   
Text File  |  1993-01-14  |  2KB  |  43 lines

  1. The accompanying files are for DAUBWAVE, a wavelet analysis program.  This
  2. archive should contain the following files.
  3.  
  4. daubwave.exe - Executable for an MSDOS machine.
  5. daubwave.c   - Source code for the executable.  It should compile under
  6.            any c compiler.  If you get an error where 'stdlib.h' is
  7.            not found, just comment out that particular #include
  8.            statement and there should be no problem.
  9. daubwave.doc - Documentation giving a brief description of orthogonal
  10.            wavelets, explanation of program options and examples
  11.            of program options.
  12. readme.txt   - This file.
  13.  
  14. This code should only be distributed in its current form with the above
  15. files.  You are free to modify the code any way you wish; however, the
  16. modified code should not be distributed without the author's permission.
  17.  
  18. One limitation on the program is that is only analyzes a maximum of 4096
  19. points.  This maximum value can be increased by changing #define MAXNUM
  20. in the code and recompiling.  Since the program is using floating point
  21. numbers, 4096 data points takes up 16384 bytes of memory.  If changed, the
  22. maximum number of points analyzed should be a power of 2 such as 8192,
  23. 16384, etc.  With larger blocks of memory allocated for the data, some of
  24. the code may need some modification to make sure huge pointers are being
  25. used.  This code should also work on other computers since the output is
  26. only ascii or IEEE floating point.  On a work station the value of MAXNUM
  27. can be increased without having to modify the code due to memory model
  28. limitations, which are present on the PC.
  29.  
  30. Disclaimer
  31. The author is not liable for any damage to equipment or data due to use
  32. of this program.  If there are any questions you can contact the author
  33. at the following address.
  34.  
  35. Steven Gollmer
  36. Civil Building
  37. Dept EAS
  38. Purdue University
  39. West Lafayette, IN  47907
  40. nls@mace.cc.purdue.edu
  41.  
  42. November 18, 1992
  43.